home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19960425-19960715 / 000288_news@columbia.edu _Sun Jun 23 11:58:58 1996.msg < prev    next >
Internet Message Format  |  1996-07-26  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id LAA08096 for <kermit.misc@watsun.cc.columbia.edu>; Sun, 23 Jun 1996 11:58:57 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id LAA28695 for kermit.misc@watsun; Sun, 23 Jun 1996 11:58:57 -0400 (EDT)
  4. Path: news.columbia.edu!panix!newsfeed.internetmci.com!newsxfer2.itd.umich.edu!agate!dog.ee.lbl.gov!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: HELP:  random beeps at high speed connection
  8. Message-ID: <1996Jun23.081336.82013@cc.usu.edu>
  9. Date: 23 Jun 96 08:13:36 MDT
  10. References: <4qiniu$s22@gaia.ns.utk.edu>
  11. Organization: Utah State University
  12. Lines: 33
  13.  
  14. In article <4qiniu$s22@gaia.ns.utk.edu>, rkutai@utkux.utk.edu (Raymond Steven Kutai) writes:
  15. > Hello,
  16. >        I am using KERMIT 3.14 to connect to my UNIX account from home.  
  17. > Recently I swithced from using the HAYES.SCR to ULTRA144.SCR.  I managed to 
  18. > get connection.  I noticed there's some improvement in speed.  Problem is I 
  19. > kept getting some random beeps, and ramdom characters on the screen.  I read 
  20. > the .BWR and .UPD files included with the Kermit dist. and I found out that 
  21. > the random beeps and characters are due to the high speed.  Further, I need to 
  22. > use flow control.  Well I did 'set flow xon/xoff' and also tried 'set flow 
  23. > rcs/cts'  but still getting the beeps and random chars.  Is there anyway to 
  24. > solve this problem?
  25. >     My modem is Hayes Optima 9600.  BTW, things works fine at 9600bps, but
  26. > I want to make it work at 384000bps in order to take full advantage of the 
  27. > modem capabilities.
  28. ------------
  29.     MS-DOS Kermit uses character Control-G (Bell) to stand for one or
  30. more characters lost from a serial port due to "incoming overrun." That
  31. means Kermit was unable to get to the serial port UART in time before a
  32. second or third... character arrived there and all but the last were lost.
  33. On today's computers this ought not happen unless the machine is strangely
  34. configured.
  35.     Primary guess is IRQ or port conflicts. Second guess is something
  36. on your machine eating lots of cpu time with interrupts turned off, such
  37. as screen savers, a so-so disk cache, and so on. Third guess is simply a
  38. noisy comms link. This means you get to open the box, to unload all kinds
  39. of nifty software appearing in config.sys and autoexec.bat and put back
  40. one item at a time, and to talk with your local telephone company.
  41.     Keep in mind that when you try SET FLOW RTS/CTS that the modem itself
  42. must be informed to do the same. Please check your modem manual for the
  43. proper command (typically an AT kind). RTS/CTS is the preferred flow control
  44. method.
  45.     Joe D.